home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / manual-p / man_db-2.000 / man_db-2 / man_db-2.3.10 / lib / error.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-12  |  226 b   |  17 lines

  1. #ifndef _ERROR_H
  2. #define _ERROR_H
  3.  
  4. #include <errno.h>
  5.  
  6. #ifndef STDC_HEADERS
  7. extern int errno;
  8. #endif
  9.  
  10. #if __STDC__ && (HAVE_VPRINTF || HAVE_DOPRNT)
  11. void error (int, int, const char *, ...);
  12. #else
  13. void error ();
  14. #endif
  15.  
  16. #endif
  17.